home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / cli-common / gac-package-remove < prev    next >
Text File  |  2009-03-13  |  233b  |  14 lines

  1. #!/bin/bash
  2.  
  3. for file in /usr/share/cli-common/runtimes.d/*
  4.   do    
  5.   if [ -x $file ]; then
  6.       # Figure out the formal name
  7.       F="$($file name)"
  8.  
  9.       # Remove it
  10.       echo "Removing $1 from $F"
  11.       $file remove $1
  12.   fi
  13. done
  14.